x11: Remove duplicate variable setting
authorBenjamin Otte <otte@redhat.com>
Sun, 20 Mar 2016 04:30:03 +0000 (05:30 +0100)
committerBenjamin Otte <otte@redhat.com>
Sun, 20 Mar 2016 04:30:51 +0000 (05:30 +0100)
http://www.viva64.com/en/b/0383/

gdk/x11/gdkwindow-x11.c

index beb08a5da2dd219260e987438f87c51e9feacfd3..9ed087ac545c76e79a95da97f29c97bda6072eba 100644 (file)
@@ -4510,7 +4510,7 @@ gdk_x11_window_get_decorations(GdkWindow       *window,
 
 static void
 gdk_x11_window_set_functions (GdkWindow    *window,
-                         GdkWMFunction functions)
+                              GdkWMFunction functions)
 {
   MotifWmHints hints;
   
@@ -5764,7 +5764,6 @@ gdk_window_impl_x11_class_init (GdkWindowImplX11Class *klass)
   impl_class->set_decorations = gdk_x11_window_set_decorations;
   impl_class->get_decorations = gdk_x11_window_get_decorations;
   impl_class->set_functions = gdk_x11_window_set_functions;
-  impl_class->set_functions = gdk_x11_window_set_functions;
   impl_class->begin_resize_drag = gdk_x11_window_begin_resize_drag;
   impl_class->begin_move_drag = gdk_x11_window_begin_move_drag;
   impl_class->set_opacity = gdk_x11_window_set_opacity;